home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gcctest / tests05.zoo / Makefile.tos < prev    next >
Makefile  |  1993-03-02  |  388b  |  22 lines

  1. SRC = float1.c tatof.c tbcopy.c tctype.c tfseek.c tprintf.c tqsort.c \
  2. trandm.c trdwr.c tregex.c tscanf.c tsetjm.c tsignl.c tstdio.c tstring.c \
  3. tstrl1.c tstrl2.c tstrtoul.c ttime.c twrseek.c tmemmv.c
  4.  
  5. .SUFFIXES: .ttp
  6.  
  7. .c.ttp:
  8.     $(CC) $(CFLAGS) -o $*.ttp $*.c
  9.  
  10. CC= cgcc
  11. CFLAGS = -g -O
  12.  
  13. ALL = $(SRC:.c=.ttp)
  14.  
  15. all : $(ALL)
  16.  
  17. clean:
  18.     rm -f *.o
  19.  
  20. realclean: clean
  21.     rm -f $(ALL) core report test
  22.